In machine learning, a neural network is a computational model inspired by the structure and function of biological neural networks.
A perceptron is the simplest form of such a model, representing a single unit of computation.
Neuron
A perceptron is the earliest form of a neural network unit, introduced by Frank Rosenblatt in 1958.
It is a binary classifier that makes predictions based on a linear combination of input features.
Components:
perceptron
Perceptron
Perceptron
We design a perceptron with the following setup:
\(x_1\): number of times the word “free” appears
\(x_2\): whether the email has an attachment (0/1)
\(x_3\): length of the subject line
Weights: \(w_1 = 2,\; w_2 = 3,\; w_3 = -0.5\)
Bias: \(b = -4\)